home *** CD-ROM | disk | FTP | other *** search
/ Amiga Plus 2002 #11 / Amiga Plus CD - 2002 - No. 11.iso / Tools / Development / PowerD / powerd / modules.lha / modules / exec / resident.m < prev    next >
Encoding:
Text File  |  2001-12-31  |  318 b   |  20 lines

  1. OBJECT Resident|RT
  2.     MatchWord:UWORD,
  3.     MatchTag:PTR TO RT,
  4.     EndSkip:LONG,
  5.     Flags:UBYTE,
  6.     Version:UBYTE,
  7.     Type:UBYTE,
  8.     Pri:BYTE,
  9.     Name:PTR TO CHAR,
  10.     IdString:PTR TO CHAR,
  11.     Init:APTR
  12.  
  13. CONST    RTC_MATCHWORD=$4AFC,
  14.         RTF_COLDSTART=1,
  15.         RTF_SINGLETASK=2,
  16.         RTF_AFTERDOS=4,
  17.         RTF_AUTOINIT=$80,
  18.         RTW_NEVER=0,
  19.         RTW_COLDSTART=1
  20.